home *** CD-ROM | disk | FTP | other *** search
/ The Utilities Experience / The Utilities Experience - Volume 1.iso / software / graphics / n-z / raystorexa / arexx / simple.ray < prev    next >
Text File  |  1995-10-18  |  892b  |  49 lines

  1. /***************
  2.  * NAME:        simple.ray
  3.  * VERSION:     1.0 18.10.95
  4.  * DESCRIPTION: Tutorial: Simple Scene
  5.  * AUTHORS:     Andreas Heumann
  6.  * BUGS:        none
  7.  * TO DO:       none
  8.  * HISTORY:
  9.  *        DATE        NAME  COMMENT
  10.  *    18.10.95 ah    initial release
  11.  ***************/
  12.  
  13. signal on error
  14.  
  15. options results
  16.  
  17. IF ~show('P','RAYSTORM') THEN DO
  18.     address COMMAND 'run >NIL: <NIL: /RayStorm'
  19.     address COMMAND WaitForPort RAYSTORM
  20. END  
  21.  
  22. address RAYSTORM
  23.  
  24. 'SETCAMERA <6,1.5,-1.5> <0,0,0> <0,1,0>'
  25. 'SETWORLD [30,30,255]'
  26. 'POINTLIGHT <30,50,30> [255,255,255] SHADOW'
  27.  
  28. 'NEWSURFACE planesurf'
  29. 'DIFFUSE [155,0,0]'
  30. 'IMTEXTURE /textures/checker.itx <.1,.1,.1> <0,0,0> <2,2,2> 50 0 0'
  31.  
  32. 'NEWSURFACE spheresurf'
  33. 'REFLECT [255,255,255]'
  34.  
  35. 'SPHERE spheresurf <0,1,0> 1'
  36. 'PLANE planesurf'
  37.  
  38. 'STARTRENDER'
  39.  
  40. 'SAVEPIC simple.iff'
  41.  
  42. exit 0
  43.  
  44. error:
  45. say "Error" rc "in line" sigl ":"
  46. GETERRORSTR rc
  47. say result
  48. exit 0
  49.